home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 November / Freeware November 1998.img / dist / fw_emacs.idb / usr / freeware / info / emacs-5.z / emacs-5 (.txt)
GNU Info File  |  1998-10-27  |  46KB  |  821 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.63 from the
  2. input file emacs.texi.
  3. File: emacs,  Node: Rectangles,  Next: Registers,  Prev: Accumulating Text,  Up: Top
  4. Rectangles
  5. ==========
  6.    The rectangle commands operate on rectangular areas of the text: all
  7. the characters between a certain pair of columns, in a certain range of
  8. lines. Commands are provided to kill rectangles, yank killed rectangles,
  9. clear them out, fill them with blanks or text, or delete them. Rectangle
  10. commands are useful with text in multicolumn formats, and for changing
  11. text into or out of such formats.
  12.    When you must specify a rectangle for a command to work on, you do it
  13. by putting the mark at one corner and point at the opposite corner.  The
  14. rectangle thus specified is called the "region-rectangle" because you
  15. control it in about the same way the region is controlled.  But
  16. remember that a given combination of point and mark values can be
  17. interpreted either as a region or as a rectangle, depending on the
  18. command that uses them.
  19.    If point and the mark are in the same column, the rectangle they
  20. delimit is empty.  If they are in the same line, the rectangle is one
  21. line high.  This asymmetry between lines and columns comes about
  22. because point (and likewise the mark) is between two columns, but within
  23. a line.
  24. `C-x r k'
  25.      Kill the text of the region-rectangle, saving its contents as the
  26.      "last killed rectangle" (`kill-rectangle').
  27. `C-x r d'
  28.      Delete the text of the region-rectangle (`delete-rectangle').
  29. `C-x r y'
  30.      Yank the last killed rectangle with its upper left corner at point
  31.      (`yank-rectangle').
  32. `C-x r o'
  33.      Insert blank space to fill the space of the region-rectangle
  34.      (`open-rectangle').  This pushes the previous contents of the
  35.      region-rectangle rightward.
  36. `M-x clear-rectangle'
  37.      Clear the region-rectangle by replacing its contents with spaces.
  38. `M-x string-rectangle RET STRING RET'
  39.      Insert STRING on each line of the region-rectangle.
  40.    The rectangle operations fall into two classes: commands deleting and
  41. inserting rectangles, and commands for blank rectangles.
  42.    There are two ways to get rid of the text in a rectangle: you can
  43. discard the text (delete it) or save it as the "last killed" rectangle.
  44. The commands for these two ways are `C-x r d' (`delete-rectangle') and
  45. `C-x r k' (`kill-rectangle').  In either case, the portion of each line
  46. that falls inside the rectangle's boundaries is deleted, causing
  47. following text (if any) on the line to move left into the gap.
  48.    Note that "killing" a rectangle is not killing in the usual sense;
  49. the rectangle is not stored in the kill ring, but in a special place
  50. that can only record the most recent rectangle killed.  This is because
  51. yanking a rectangle is so different from yanking linear text that
  52. different yank commands have to be used and yank-popping is hard to
  53. make sense of.
  54.    To yank the last killed rectangle, type `C-x r y'
  55. (`yank-rectangle').  Yanking a rectangle is the opposite of killing
  56. one.  Point specifies where to put the rectangle's upper left corner.
  57. The rectangle's first line is inserted there, the rectangle's second
  58. line is inserted at a position one line vertically down, and so on.  The
  59. number of lines affected is determined by the height of the saved
  60. rectangle.
  61.    You can convert single-column lists into double-column lists using
  62. rectangle killing and yanking; kill the second half of the list as a
  63. rectangle and then yank it beside the first line of the list.  *Note
  64. Two-Column::, for another way to edit multi-column text.
  65.    You can also copy rectangles into and out of registers with `C-x r r
  66. R' and `C-x r i R'.  *Note Rectangle Registers: RegRect.
  67.    There are two commands for making with blank rectangles: `M-x
  68. clear-rectangle' to blank out existing text, and `C-x r o'
  69. (`open-rectangle') to insert a blank rectangle.  Clearing a rectangle
  70. is equivalent to deleting it and then inserting a blank rectangle of
  71. the same size.
  72.    The command `M-x string-rectangle' is similar to `C-x r o', but it
  73. inserts a specified string instead of blanks.  You specify the string
  74. with the minibuffer.  Since the length of the string specifies how many
  75. columns to insert, the width of the region-rectangle does not matter
  76. for this command.  What does matter is the position of the left edge
  77. (which specifies the column position for the insertion in each line)
  78. and the range of lines that the rectangle occupies.  The previous
  79. contents of the text beyond the insertion column are pushed rightward.
  80. File: emacs,  Node: Registers,  Next: Display,  Prev: Rectangles,  Up: Top
  81. Registers
  82. *********
  83.    Emacs "registers" are places you can save text or positions for
  84. later use.  Once you save text or a rectangle in a register, you can
  85. copy it into the buffer once or many times; you can move point to a
  86. position saved in a register once or many times.
  87.    Each register has a name which is a single character.  A register can
  88. store a piece of text, a rectangle, a position, a window configuration,
  89. or a file name, but only one thing at any given time.  Whatever you
  90. store in a register remains there until you store something else in that
  91. register.  To see what a register R contains, use `M-x view-register'.
  92. `M-x view-register RET R'
  93.      Display a description of what register R contains.
  94. * Menu:
  95. * Position: RegPos.           Saving positions in registers.
  96. * Text: RegText.              Saving text in registers.
  97. * Rectangle: RegRect.         Saving rectangles in registers.
  98. * Configurations: RegConfig.  Saving window configurations in registers.
  99. * Files: RegFiles.            File names in registers.
  100. * Bookmarks::                 Bookmarks are like registers, but persistent.
  101. File: emacs,  Node: RegPos,  Next: RegText,  Up: Registers
  102. Saving Positions in Registers
  103. =============================
  104.    Saving a position records a place in a buffer so that you can move
  105. back there later.  Moving to a saved position switches to that buffer
  106. and moves point to that place in it.
  107. `C-x r SPC R'
  108.      Save position of point in register R (`point-to-register').
  109. `C-x r j R'
  110.      Jump to the position saved in register R (`jump-to-register').
  111.    To save the current position of point in a register, choose a name R
  112. and type `C-x r SPC R'.  The register R retains the position thus saved
  113. until you store something else in that register.
  114.    The command `C-x r j R' moves point to the position recorded in
  115. register R.  The register is not affected; it continues to record the
  116. same position.  You can jump to the saved position any number of times.
  117. File: emacs,  Node: RegText,  Next: RegRect,  Prev: RegPos,  Up: Registers
  118. Saving Text in Registers
  119. ========================
  120.    When you want to insert a copy of the same piece of text several
  121. times, it may be inconvenient to yank it from the kill ring, since each
  122. subsequent kill moves that entry further down the ring.  An alternative
  123. is to store the text in a register and later retrieve it.
  124. `C-x r s R'
  125.      Copy region into register R (`copy-to-register').
  126. `C-x r i R'
  127.      Insert text from register R (`insert-register').
  128.    `C-x r s R' stores a copy of the text of the region into the
  129. register named R.  Given a numeric argument, `C-x r s R' deletes the
  130. text from the buffer as well.
  131.    `C-x r i R' inserts in the buffer the text from register R.
  132. Normally it leaves point before the text and places the mark after, but
  133. with a numeric argument (`C-u') it puts point after the text and the
  134. mark before.
  135. File: emacs,  Node: RegRect,  Next: RegConfig,  Prev: RegText,  Up: Registers
  136. Saving Rectangles in Registers
  137. ==============================
  138.    A register can contain a rectangle instead of linear text.  The
  139. rectangle is represented as a list of strings.  *Note Rectangles::, for
  140. basic information on how to specify a rectangle in the buffer.
  141. `C-x r r R'
  142.      Copy the region-rectangle into register R
  143.      (`copy-rectangle-to-register').  With numeric argument, delete it
  144.      as well.
  145. `C-x r i R'
  146.      Insert the rectangle stored in register R (if it contains a
  147.      rectangle) (`insert-register').
  148.    The `C-x r i R' command inserts a text string if the register
  149. contains one, and inserts a rectangle if the register contains one.
  150.    See also the command `sort-columns', which you can think of as
  151. sorting a rectangle.  *Note Sorting::.
  152. File: emacs,  Node: RegConfig,  Next: RegFiles,  Prev: RegRect,  Up: Registers
  153. Saving Window Configurations in Registers
  154. =========================================
  155.    You can save the window configuration of the selected frame in a
  156. register, or even the configuration of all windows in all frames, and
  157. restore the configuration later.
  158. `C-x r w R'
  159.      Save the state of the selected frame's windows in register R
  160.      (`window-configuration-to-register').
  161. `C-x r f R'
  162.      Save the state of all frames, including all their windows, in
  163.      register R (`frame-configuration-to-register').
  164.    Use `C-x r j R' to restore a window or frame configuration.  This is
  165. the same command used to restore a cursor position.  When you restore a
  166. frame configuration, any existing frames not included in the
  167. configuration become invisible.  If you wish to delete these frames
  168. instead, use `C-u C-x r j R'.
  169. File: emacs,  Node: RegFiles,  Next: Bookmarks,  Prev: RegConfig,  Up: Registers
  170. Keeping File Names in Registers
  171. ===============================
  172.    If you visit certain file names frequently, you can visit them more
  173. conveniently if you put their names in registers.  Here's the Lisp code
  174. used to put a file name in a register:
  175.      (set-register ?R '(file . NAME))
  176. For example,
  177.      (set-register ?z '(file . "/gd/gnu/emacs/19.0/src/ChangeLog"))
  178. puts the file name shown in register `z'.
  179.    To visit the file whose name is in register R, type `C-x r j R'.
  180. (This is the same command used to jump to a position or restore a frame
  181. configuration.)
  182. File: emacs,  Node: Bookmarks,  Prev: RegFiles,  Up: Registers
  183. Bookmarks
  184. =========
  185.    "Bookmarks" are somewhat like registers in that they record
  186. positions you can jump to.  Unlike registers, they have long names, and
  187. they persist automatically from one Emacs session to the next.  The
  188. prototypical use of bookmarks is to record "where you were reading" in
  189. various files.
  190. `C-x r m RET'
  191.      Set the bookmark for the visited file, at point.
  192. `C-x r m BOOKMARK RET'
  193.      Set the bookmark named BOOKMARK at point (`bookmark-set').
  194. `C-x r b BOOKMARK RET'
  195.      Jump to the bookmark named BOOKMARK (`bookmark-jump').
  196. `C-x r l'
  197.      List all bookmarks (`list-bookmarks').
  198. `M-x bookmark-save'
  199.      Save all the current bookmark values in the default bookmark file.
  200.    The prototypical use for bookmarks is to record one current position
  201. in each of several files.  So the command `C-x r m', which sets a
  202. bookmark, uses the visited file name as the default for the bookmark
  203. name.  If you name each bookmark after the file it points to, then you
  204. can conveniently revisit any of those files with `C-x r b', and move to
  205. the position of the bookmark at the same time.
  206.    To display a list of all your bookmarks in a separate buffer, type
  207. `C-x r l' (`list-bookmarks').  If you switch to that buffer, you can
  208. use it to edit your bookmark definitions or annotate the bookmarks.
  209. Type `C-h m' in that buffer for more information about its special
  210. editing commands.
  211.    When you kill Emacs, Emacs offers to save your bookmark values in
  212. your default bookmark file, `~/.emacs.bmk', if you have changed any
  213. bookmark values.  You can also save the bookmarks at any time with the
  214. `M-x bookmark-save' command.  The bookmark commands load your default
  215. bookmark file automatically.  This saving and loading is how bookmarks
  216. persist from one Emacs session to the next.
  217.    If you set the variable `bookmark-save-flag' to 1, then each command
  218. that sets a bookmark will also save your bookmarks; this way, you don't
  219. lose any bookmark values even if Emacs crashes.  (The value, if a
  220. number, says how many bookmark modifications should go by between
  221. saving.)
  222.    Bookmark position values are saved with surrounding context, so that
  223. `bookmark-jump' can find the proper position even if the file is
  224. modified slightly.  The variable `bookmark-search-size' says how many
  225. characters of context to record, on each side of the bookmark's
  226. position.
  227.    Here are some additional commands for working with bookmarks:
  228. `M-x bookmark-load RET FILENAME RET'
  229.      Load a file named FILENAME that contains a list of bookmark
  230.      values.  You can use this command, as well as `bookmark-write', to
  231.      work with other files of bookmark values in addition to your
  232.      default bookmark file.
  233. `M-x bookmark-write RET FILENAME RET'
  234.      Save all the current bookmark values in the file FILENAME.
  235. `M-x bookmark-delete RET BOOKMARK RET'
  236.      Delete the bookmark named BOOKMARK.
  237. `M-x bookmark-insert-location RET BOOKMARK RET'
  238.      Insert in the buffer the name of the file that bookmark BOOKMARK
  239.      points to.
  240. `M-x bookmark-insert RET BOOKMARK RET'
  241.      Insert in the buffer the *contents* of the file that bookmark
  242.      BOOKMARK points to.
  243. File: emacs,  Node: Display,  Next: Search,  Prev: Registers,  Up: Top
  244. Controlling the Display
  245. ***********************
  246.    Since only part of a large buffer fits in the window, Emacs tries to
  247. show the part that is likely to be interesting.  The display control
  248. commands allow you to specify which part of the text you want to see.
  249. `C-l'
  250.      Clear screen and redisplay, scrolling the selected window to center
  251.      point vertically within it (`recenter').
  252. `C-v'
  253.      Scroll forward (a windowful or a specified number of lines)
  254.      (`scroll-up').
  255. `NEXT'
  256.      Likewise, scroll forward.
  257. `M-v'
  258.      Scroll backward (`scroll-down').
  259. `PRIOR'
  260.      Likewise, scroll backward.
  261. `ARG C-l'
  262.      Scroll so point is on screen line ARG (`recenter').
  263. `C-x <'
  264.      Scroll text in current window to the left (`scroll-left').
  265. `C-x >'
  266.      Scroll to the right (`scroll-right').
  267. `C-x $'
  268.      Make deeply indented lines invisible (`set-selective-display').
  269.    The names of all scroll commands are based on the direction that the
  270. text moves in the window.  Thus, the command to scrolling forward is
  271. called `scroll-up', since the text moves up.
  272. * Menu:
  273. * Scrolling::               Moving text up and down in a window.
  274. * Horizontal Scrolling::   Moving text left and right in a window.
  275. * Selective Display::      Hiding lines with lots of indentation.
  276. * European Display::       Displaying (and entering) European characters.
  277. * Follow Mode::            Follow mode lets two windows scroll as one.
  278. * Optional Mode Line::     Optional mode line display features.
  279. * Display Vars::           Information on variables for customizing display.
  280. File: emacs,  Node: Scrolling,  Next: Horizontal Scrolling,  Up: Display
  281. Scrolling
  282. =========
  283.    If a buffer contains text that is too large to fit entirely within a
  284. window that is displaying the buffer, Emacs shows a contiguous portion
  285. of the text.  The portion shown always contains point.
  286.    "Scrolling" means moving text up or down in the window so that
  287. different parts of the text are visible.  Scrolling forward means that
  288. text moves up, and new text appears at the bottom.  Scrolling backward
  289. moves text down and new text appears at the top.
  290.    Scrolling happens automatically if you move point past the bottom or
  291. top of the window.  You can also explicitly request scrolling with the
  292. commands in this section.
  293. `C-l'
  294.      Clear screen and redisplay, scrolling the selected window to center
  295.      point vertically within it (`recenter').
  296. `C-v'
  297.      Scroll forward (a windowful or a specified number of lines)
  298.      (`scroll-up').
  299. `NEXT'
  300.      Likewise, scroll forward.
  301. `M-v'
  302.      Scroll backward (`scroll-down').
  303. `PRIOR'
  304.      Likewise, scroll backward.
  305. `ARG C-l'
  306.      Scroll so point is on line ARG (`recenter').
  307. `C-M-l'
  308.      Scroll heuristically to bring useful information onto the screen
  309.      (`reposition-window').
  310.    The most basic scrolling command is `C-l' (`recenter') with no
  311. argument.  It clears the entire screen and redisplays all windows.  In
  312. addition, it scrolls the selected window so that point is halfway down
  313. from the top of the window.
  314.    The scrolling commands `C-v' and `M-v' let you move all the text in
  315. the window up or down a few lines.  `C-v' (`scroll-up') with an
  316. argument shows you that many more lines at the bottom of the window,
  317. moving the text and point up together as `C-l' might.  `C-v' with a
  318. negative argument shows you more lines at the top of the window.  `M-v'
  319. (`scroll-down') is like `C-v', but moves in the opposite direction.
  320. The function keys NEXT and PRIOR are equivalent to `C-v' and `M-v'.
  321.    To read the buffer a windowful at a time, use `C-v' with no argument.
  322. It takes the last two lines at the bottom of the window and puts them at
  323. the top, followed by nearly a whole windowful of lines not previously
  324. visible.  If point was in the text scrolled off the top, it moves to the
  325. new top of the window.  `M-v' with no argument moves backward with
  326. overlap similarly.  The number of lines of overlap across a `C-v' or
  327. `M-v' is controlled by the variable `next-screen-context-lines'; by
  328. default, it is two.
  329.    Another way to do scrolling is with `C-l' with a numeric argument.
  330. `C-l' does not clear the screen when given an argument; it only scrolls
  331. the selected window.  With a positive argument N, it repositions text
  332. to put point N lines down from the top.  An argument of zero puts point
  333. on the very top line.  Point does not move with respect to the text;
  334. rather, the text and point move rigidly on the screen.  `C-l' with a
  335. negative argument puts point that many lines from the bottom of the
  336. window.  For example, `C-u - 1 C-l' puts point on the bottom line, and
  337. `C-u - 5 C-l' puts it five lines from the bottom.  Just `C-u' as
  338. argument, as in `C-u C-l', scrolls point to the center of the screen.
  339.    The `C-M-l' command (`reposition-window') scrolls the current window
  340. heuristically in a way designed to get useful information onto the
  341. screen.  For example, in a Lisp file, this command tries to get the
  342. entire current defun onto the screen if possible.
  343.    Scrolling happens automatically if point has moved out of the visible
  344. portion of the text when it is time to display.  Usually the scrolling
  345. is done so as to put point vertically centered within the window.
  346. However, if the variable `scroll-step' has a nonzero value, an attempt
  347. is made to scroll the buffer by that many lines; if that is enough to
  348. bring point back into visibility, that is what is done.
  349. File: emacs,  Node: Horizontal Scrolling,  Next: Selective Display,  Prev: Scrolling,  Up: Display
  350. Horizontal Scrolling
  351. ====================
  352. `C-x <'
  353.      Scroll text in current window to the left (`scroll-left').
  354. `C-x >'
  355.      Scroll to the right (`scroll-right').
  356.    The text in a window can also be scrolled horizontally.  This means
  357. that each line of text is shifted sideways in the window, and one or
  358. more characters at the beginning of each line are not displayed at all.
  359. When a window has been scrolled horizontally in this way, text lines
  360. are truncated rather than continued (*note Continuation Lines::.), with
  361. a `$' appearing in the first column when there is text truncated to the
  362. left, and in the last column when there is text truncated to the right.
  363.    The command `C-x <' (`scroll-left') scrolls the selected window to
  364. the left by N columns with argument N.  This moves part of the
  365. beginning of each line off the left edge of the window.  With no
  366. argument, it scrolls by almost the full width of the window (two
  367. columns less, to be precise).
  368.    `C-x >' (`scroll-right') scrolls similarly to the right.  The window
  369. cannot be scrolled any farther to the right once it is displayed
  370. normally (with each line starting at the window's left margin);
  371. attempting to do so has no effect.  This means that you don't have to
  372. calculate the argument precisely for `C-x >'; any sufficiently large
  373. argument will restore normally display.
  374. File: emacs,  Node: Selective Display,  Next: European Display,  Prev: Horizontal Scrolling,  Up: Display
  375. Selective Display
  376. =================
  377.    Emacs has the ability to hide lines indented more than a certain
  378. number of columns (you specify how many columns).  You can use this to
  379. get an overview of a part of a program.
  380.    To hide lines, type `C-x $' (`set-selective-display') with a numeric
  381. argument N.  Then lines with at least N columns of indentation
  382. disappear from the screen.  The only indication of their presence is
  383. that three dots (`...') appear at the end of each visible line that is
  384. followed by one or more hidden ones.
  385.    The commands `C-n' and `C-p' move across the hidden lines as if they
  386. were not there.
  387.    The hidden lines are still present in the buffer, and most editing
  388. commands see them as usual, so you may find point in the middle of the
  389. hidden text.  When this happens, the cursor appears at the end of the
  390. previous line, after the three dots.  If point is at the end of the
  391. visible line, before the newline that ends it, the cursor appears before
  392. the three dots.
  393.    To make all lines visible again, type `C-x $' with no argument.
  394.    If you set the variable `selective-display-ellipses' to `nil', the
  395. three dots do not appear at the end of a line that precedes hidden
  396. lines.  Then there is no visible indication of the hidden lines.  This
  397. variable becomes local automatically when set.
  398. File: emacs,  Node: European Display,  Next: Follow Mode,  Prev: Selective Display,  Up: Display
  399. European Character Set Display
  400. ==============================
  401.    Some European languages use accented letters and other special
  402. symbols.  The ISO 8859 Latin-1 character set defines character codes for
  403. many European languages in the range 160 to 255.
  404.    Emacs can display those characters according to Latin-1, provided the
  405. terminal or font in use supports them.  The `M-x
  406. standard-display-european' command toggles European character display
  407. mode.  With a numeric argument, `M-x standard-display-european' enables
  408. European character display if and only if the argument is positive.
  409. Load the library `iso-syntax' to specify the correct syntactic
  410. properties and case conversion table for the Latin-1 character set.
  411.    If your terminal does not support display of the Latin-1 character
  412. set, Emacs can display these characters as ASCII sequences which at
  413. least give you a clear idea of what the characters are.  To do this,
  414. load the library `iso-ascii'.
  415.    Some operating systems let you specify the language you are using by
  416. setting a locale.  Emacs handles one common special case of this: if
  417. your locale name for character types contains the string `8859-1' or
  418. `88591', Emacs automatically enables European character display mode
  419. and its syntax.
  420.    There are three different ways you can enter Latin-1 characters:
  421.    * If your keyboard can generate character codes 128 and up,
  422.      representing ISO Latin-1 characters, execute the following
  423.      expression to enable Emacs to understand them:
  424.           (set-input-mode (car (current-input-mode))
  425.                           (nth 1 (current-input-mode))
  426.                           0)
  427.    * You can load the library `iso-transl' to turn the key `C-x 8' into
  428.      a "compose character" prefix for entry of the extra ISO Latin-1
  429.      printing characters.  `C-x 8' is good for insertion (in the
  430.      minibuffer as well as other buffers), for searching, and in any
  431.      other context where a key sequence is allowed.  The ALT modifier
  432.      key, if you have one, serves the same purpose as `C-x 8'; use ALT
  433.      together with an accent character to modify the following letter.
  434.    * You can use ISO Accents mode.  This minor mode is convenient if you
  435.      enter non-ASCII ISO Latin-1 characters often.  When this minor
  436.      mode is enabled, the characters ``', `'', `"', `^', `/' and `~'
  437.      modify the following letter by adding the corresponding
  438.      diacritical mark to it, if possible.  To enable or disable ISO
  439.      Accents mode, use the command `M-x iso-accents-mode'.  This
  440.      command affects only the current buffer.
  441.      To enter one of those six special characters while in ISO Accents
  442.      mode, type the character, followed by a space.  Some of those
  443.      characters have a corresponding "dead key" accent character in the
  444.      ISO Latin-1 character set; to enter that character, type the
  445.      corresponding ASCII character twice.  For example, `''' enters the
  446.      Latin-1 character acute-accent (character code 0264).
  447.      ISO Accents mode input is available whenever a key sequence is
  448.      expected: for ordinary insertion, for searching, for the
  449.      minibuffer, and for certain command arguments.
  450.      In addition to the accented letters, you can use these special
  451.      sequences in ISO Accents mode to enter certain other ISO Latin-1
  452.      characters:
  453.     `/A'
  454.           `A' with ring.
  455.     `~C'
  456.           `C' with cedilla.
  457.     `~D'
  458.           `D' with stroke.
  459.     `/E'
  460.           `AE' ligature.
  461.     `/a'
  462.           `a' with ring.
  463.     `~c'
  464.           `c' with cedilla.
  465.     `~d'
  466.           `d' with stroke.
  467.     `/e'
  468.           `ae' ligature.
  469.     `"s'
  470.           German sharp `s'.
  471.     `~<'
  472.           Left guillemot.
  473.     `~>'
  474.           Right guillemot.
  475.     `~!'
  476.           Inverted exclamation mark.
  477.     `~?'
  478.           Inverted question mark.
  479. File: emacs,  Node: Follow Mode,  Next: Optional Mode Line,  Prev: European Display,  Up: Display
  480. Follow Mode
  481. ===========
  482.    "Follow mode" is a minor mode which makes two windows showing the
  483. same buffer scroll as one tall "virtual window."  To use Follow mode,
  484. go to a frame with just one window, split it into two side-by-side
  485. windows using `C-x 3', and then type `M-x follow-mode'.  From then on,
  486. you can edit the buffer in either of the two windows, or scroll either
  487. one; the other window follows it.
  488.    To turn off Follow mode, type `M-x follow-mode' a second time.
  489. File: emacs,  Node: Optional Mode Line,  Next: Display Vars,  Prev: Follow Mode,  Up: Display
  490. Optional Mode Line Features
  491. ===========================
  492.    The current line number of point appears in the mode line when Line
  493. Number mode is enabled.  Use the command `M-x line-number-mode' to turn
  494. this mode on and off; normally it is on.  The line number appears
  495. before the buffer percentage POS, with the letter `L' to indicate what
  496. it is.  *Note Minor Modes::, for more information about minor modes and
  497. about how to use this command.
  498.    If the buffer is very large (larger than the value of
  499. `line-number-display-limit'), then the line number doesn't appear.
  500. Emacs doesn't compute the line number when the buffer is large, because
  501. that would be too slow.  If you have narrowed the buffer (*note
  502. Narrowing::.), the displayed line number is relative to the accessible
  503. portion of the buffer.
  504.    You can also display the current column number by turning on Column
  505. Number mode.  It displays the current column number preceded by the
  506. letter `C'.  Type `M-x column-number-mode' to toggle this mode.
  507.    Emacs can optionally display the time and system load in all mode
  508. lines.  To enable this feature, type `M-x display-time'.  The
  509. information added to the mode line usually appears after the buffer
  510. name, before the mode names and their parentheses.  It looks like this:
  511.      HH:MMpm L.LL
  512. Here HH and MM are the hour and minute, followed always by `am' or
  513. `pm'.  L.LL is the average number of running processes in the whole
  514. system recently.  (Some fields may be missing if your operating system
  515. cannot support them.)
  516.    The word `Mail' appears after the load level if there is mail for
  517. you that you have not read yet.
  518. File: emacs,  Node: Display Vars,  Prev: Optional Mode Line,  Up: Display
  519. Variables Controlling Display
  520. =============================
  521.    This section contains information for customization only.  Beginning
  522. users should skip it.
  523.    The variable `mode-line-inverse-video' controls whether the mode
  524. line is displayed in inverse video (assuming the terminal supports it);
  525. `nil' means don't do so.  *Note Mode Line::.  If you specify the
  526. foreground color for the `modeline' face, and `mode-line-inverse-video'
  527. is non-`nil', then the default background color for that face is the
  528. usual foreground color.  *Note Faces::.
  529.    If the variable `inverse-video' is non-`nil', Emacs attempts to
  530. invert all the lines of the display from what they normally are.
  531.    If the variable `visible-bell' is non-`nil', Emacs attempts to make
  532. the whole screen blink when it would normally make an audible bell
  533. sound.  This variable has no effect if your terminal does not have a way
  534. to make the screen blink.
  535.    When you reenter Emacs after suspending, Emacs normally clears the
  536. screen and redraws the entire display.  On some terminals with more than
  537. one page of memory, it is possible to arrange the termcap entry so that
  538. the `ti' and `te' strings (output to the terminal when Emacs is entered
  539. and exited, respectively) switch between pages of memory so as to use
  540. one page for Emacs and another page for other output.  Then you might
  541. want to set the variable `no-redraw-on-reenter' non-`nil'; this tells
  542. Emacs to assume, when resumed, that the screen page it is using still
  543. contains what Emacs last wrote there.
  544.    The variable `echo-keystrokes' controls the echoing of
  545. multi-character keys; its value is the number of seconds of pause
  546. required to cause echoing to start, or zero meaning don't echo at all.
  547. *Note Echo Area::.
  548.    If the variable `ctl-arrow' is `nil', control characters in the
  549. buffer are displayed with octal escape sequences, all except newline
  550. and tab.  Altering the value of `ctl-arrow' makes it local to the
  551. current buffer; until that time, the default value is in effect.  The
  552. default is initially `t'.  *Note Display Tables: (elisp)Display Tables.
  553.    Normally, a tab character in the buffer is displayed as whitespace
  554. which extends to the next display tab stop position, and display tab
  555. stops come at intervals equal to eight spaces.  The number of spaces
  556. per tab is controlled by the variable `tab-width', which is made local
  557. by changing it, just like `ctl-arrow'.  Note that how the tab character
  558. in the buffer is displayed has nothing to do with the definition of TAB
  559. as a command.  The variable `tab-width' must have an integer value
  560. between 1 and 1000, inclusive.
  561.    If the variable `truncate-lines' is non-`nil', then each line of
  562. text gets just one screen line for display; if the text line is too
  563. long, display shows only the part that fits.  If `truncate-lines' is
  564. `nil', then long text lines display as more than one screen line,
  565. enough to show the whole text of the line.  *Note Continuation Lines::.
  566. Altering the value of `truncate-lines' makes it local to the current
  567. buffer; until that time, the default value is in effect.  The default
  568. is initially `nil'.
  569.    If the variable `truncate-partial-width-windows' is non-`nil', it
  570. forces truncation rather than continuation in any window less than the
  571. full width of the screen or frame, regardless of the value of
  572. `truncate-lines'.  For information about side-by-side windows, see
  573. *Note Split Window::.  See also *Note Display: (elisp)Display.
  574.    The variable `baud-rate' holds the the output speed of the terminal,
  575. as far as Emacs knows.  Setting this variable does not change the speed
  576. of actual data transmission, but the value is used for calculations
  577. such as padding.  It also affects decisions about whether to scroll
  578. part of the screen or redraw it instead--even when using a window
  579. system.  (We designed it this way, despite the fact that a window
  580. system has no true "output speed", to give you a way to tune these
  581. decisions.)
  582. File: emacs,  Node: Search,  Next: Fixit,  Prev: Display,  Up: Top
  583. Searching and Replacement
  584. *************************
  585.    Like other editors, Emacs has commands for searching for occurrences
  586. of a string.  The principal search command is unusual in that it is
  587. "incremental"; it begins to search before you have finished typing the
  588. search string.  There are also nonincremental search commands more like
  589. those of other editors.
  590.    Besides the usual `replace-string' command that finds all
  591. occurrences of one string and replaces them with another, Emacs has a
  592. fancy replacement command called `query-replace' which asks
  593. interactively which occurrences to replace.
  594. * Menu:
  595. * Incremental Search::       Search happens as you type the string.
  596. * Nonincremental Search::  Specify entire string and then search.
  597. * Word Search::           Search for sequence of words.
  598. * Regexp Search::       Search for match for a regexp.
  599. * Regexps::           Syntax of regular expressions.
  600. * Search Case::           To ignore case while searching, or not.
  601. * Replace::           Search, and replace some or all matches.
  602. * Other Repeating Search:: Operating on all matches for some regexp.
  603. File: emacs,  Node: Incremental Search,  Next: Nonincremental Search,  Prev: Search,  Up: Search
  604. Incremental Search
  605. ==================
  606.    An incremental search begins searching as soon as you type the first
  607. character of the search string.  As you type in the search string, Emacs
  608. shows you where the string (as you have typed it so far) would be
  609. found.  When you have typed enough characters to identify the place you
  610. want, you can stop.  Depending on what you plan to do next, you may or
  611. may not need to terminate the search explicitly with RET.
  612. `C-s'
  613.      Incremental search forward (`isearch-forward').
  614. `C-r'
  615.      Incremental search backward (`isearch-backward').
  616.    `C-s' starts an incremental search.  `C-s' reads characters from the
  617. keyboard and positions the cursor at the first occurrence of the
  618. characters that you have typed.  If you type `C-s' and then `F', the
  619. cursor moves right after the first `F'.  Type an `O', and see the
  620. cursor move to after the first `FO'.  After another `O', the cursor is
  621. after the first `FOO' after the place where you started the search.
  622. Meanwhile, the search string `FOO' has been echoed in the echo area.
  623.    If you make a mistake in typing the search string, you can cancel
  624. characters with DEL.  Each DEL cancels the last character of search
  625. string.  This does not happen until Emacs is ready to read another
  626. input character; first it must either find, or fail to find, the
  627. character you want to erase.  If you do not want to wait for this to
  628. happen, use `C-g' as described below.
  629.    When you are satisfied with the place you have reached, you can type
  630. RET, which stops searching, leaving the cursor where the search brought
  631. it.  Also, any command not specially meaningful in searches stops the
  632. searching and is then executed.  Thus, typing `C-a' would exit the
  633. search and then move to the beginning of the line.  RET is necessary
  634. only if the next command you want to type is a printing character, DEL,
  635. RET, or another control character that is special within searches
  636. (`C-q', `C-w', `C-r', `C-s', `C-y', `M-y', `M-r', or `M-s').
  637.    Sometimes you search for `FOO' and find it, but not the one you
  638. expected to find.  There was a second `FOO' that you forgot about,
  639. before the one you were looking for.  In this event, type another `C-s'
  640. to move to the next occurrence of the search string.  This can be done
  641. any number of times.  If you overshoot, you can cancel some `C-s'
  642. characters with DEL.
  643.    After you exit a search, you can search for the same string again by
  644. typing just `C-s C-s': the first `C-s' is the key that invokes
  645. incremental search, and the second `C-s' means "search again".
  646.    To reuse earlier search strings, use the "search ring".  The
  647. commands `M-p' and `M-n' move through the ring to pick a search string
  648. to reuse.  These commands leave the selected search ring element in the
  649. minibuffer, where you can edit it.  Type `C-s' or `C-r' to terminate
  650. editing the string and search for it.
  651.    If your string is not found at all, the echo area says `Failing
  652. I-Search'.  The cursor is after the place where Emacs found as much of
  653. your string as it could.  Thus, if you search for `FOOT', and there is
  654. no `FOOT', you might see the cursor after the `FOO' in `FOOL'.  At this
  655. point there are several things you can do.  If your string was
  656. mistyped, you can rub some of it out and correct it.  If you like the
  657. place you have found, you can type RET or some other Emacs command to
  658. "accept what the search offered".  Or you can type `C-g', which removes
  659. from the search string the characters that could not be found (the `T'
  660. in `FOOT'), leaving those that were found (the `FOO' in `FOOT').  A
  661. second `C-g' at that point cancels the search entirely, returning point
  662. to where it was when the search started.
  663.    An upper-case letter in the search string makes the search
  664. case-sensitive.  If you delete the upper-case character from the search
  665. string, it ceases to have this effect.  *Note Search Case::.
  666.    If a search is failing and you ask to repeat it by typing another
  667. `C-s', it starts again from the beginning of the buffer.  Repeating a
  668. failing reverse search with `C-r' starts again from the end.  This is
  669. called "wrapping around".  `Wrapped' appears in the search prompt once
  670. this has happened.  If you keep on going past the original starting
  671. point of the search, it changes to `Overwrapped', which means that you
  672. are revisiting matches that you have already seen.
  673.    The `C-g' "quit" character does special things during searches; just
  674. what it does depends on the status of the search.  If the search has
  675. found what you specified and is waiting for input, `C-g' cancels the
  676. entire search.  The cursor moves back to where you started the search.
  677. If `C-g' is typed when there are characters in the search string that
  678. have not been found--because Emacs is still searching for them, or
  679. because it has failed to find them--then the search string characters
  680. which have not been found are discarded from the search string.  With
  681. them gone, the search is now successful and waiting for more input, so
  682. a second `C-g' will cancel the entire search.
  683.    To search for a newline, type LFD (also known as `C-j').  To search
  684. for another control character such as control-S or carriage return, you
  685. must quote it by typing `C-q' first.  This function of `C-q' is
  686. analogous to its meaning as an Emacs command: it causes the following
  687. character to be treated the way a graphic character would normally be
  688. treated in the same context.  You can also specify a character by its
  689. octal code: enter `C-q' followed by three octal digits.
  690.    You can change to searching backwards with `C-r'.  If a search fails
  691. because the place you started was too late in the file, you should do
  692. this.  Repeated `C-r' keeps looking for more occurrences backwards.  A
  693. `C-s' starts going forwards again.  `C-r' in a search can be canceled
  694. with DEL.
  695.    If you know initially that you want to search backwards, you can use
  696. `C-r' instead of `C-s' to start the search, because `C-r' as a key runs
  697. a command (`isearch-backward') to search backward.
  698.    The characters `C-y' and `C-w' can be used in incremental search to
  699. grab text from the buffer into the search string.  This makes it
  700. convenient to search for another occurrence of text at point.  `C-w'
  701. copies the word after point as part of the search string, advancing
  702. point over that word.  Another `C-s' to repeat the search will then
  703. search for a string including that word.  `C-y' is similar to `C-w' but
  704. copies all the rest of the current line into the search string.  Both
  705. `C-y' and `C-w' convert the text they copy to lower case if the search
  706. is current not case-sensitive; this is so the search remains
  707. case-insensitive.
  708.    The character `M-y' copies text from the kill ring into the search
  709. string.  It uses the same text that `C-y' as a command would yank.
  710. *Note Yanking::.
  711.    When you exit the incremental search, it sets the mark to where point
  712. *was*, before the search.  That is convenient for moving back there.
  713. In Transient Mark mode, incremental search sets the mark without
  714. activating it, and does so only if the mark is not already active.
  715.    To customize the special characters that incremental search
  716. understands, alter their bindings in the keymap `isearch-mode-map'.
  717. For a list of bindings, look at the documentation of `isearch-mode' with
  718. `C-h f isearch-mode RET'.
  719. Slow Terminal Incremental Search
  720. --------------------------------
  721.    Incremental search on a slow terminal uses a modified style of
  722. display that is designed to take less time.  Instead of redisplaying
  723. the buffer at each place the search gets to, it creates a new
  724. single-line window and uses that to display the line that the search
  725. has found.  The single-line window comes into play as soon as point
  726. gets outside of the text that is already on the screen.
  727.    When you terminate the search, the single-line window is removed.
  728. Then Emacs redisplays the window in which the search was done, to show
  729. its new position of point.
  730.    The slow terminal style of display is used when the terminal baud
  731. rate is less than or equal to the value of the variable
  732. `search-slow-speed', initially 1200.
  733.    The number of lines to use in slow terminal search display is
  734. controlled by the variable `search-slow-window-lines'.  1 is its normal
  735. value.
  736. File: emacs,  Node: Nonincremental Search,  Next: Word Search,  Prev: Incremental Search,  Up: Search
  737. Nonincremental Search
  738. =====================
  739.    Emacs also has conventional nonincremental search commands, which
  740. require you to type the entire search string before searching begins.
  741. `C-s RET STRING RET'
  742.      Search for STRING.
  743. `C-r RET STRING RET'
  744.      Search backward for STRING.
  745.    To do a nonincremental search, first type `C-s RET'.  This enters
  746. the minibuffer to read the search string; terminate the string with
  747. RET, and then the search takes place.  If the string is not found, the
  748. search command gets an error.
  749.    The way `C-s RET' works is that the `C-s' invokes incremental
  750. search, which is specially programmed to invoke nonincremental search
  751. if the argument you give it is empty.  (Such an empty argument would
  752. otherwise be useless.)  `C-r RET' also works this way.
  753.    However, nonincremental searches performed using `C-s RET' do not
  754. call `search-forward' right away.  The first thing done is to see if
  755. the next character is `C-w', which requests a word search.  *Note Word
  756. Search::.
  757.    Forward and backward nonincremental searches are implemented by the
  758. commands `search-forward' and `search-backward'.  These commands may be
  759. bound to keys in the usual manner.  The feature that you can get to
  760. them via the incremental search commands exists for historical reasons,
  761. and to avoid the need to find suitable key sequences for them.
  762. File: emacs,  Node: Word Search,  Next: Regexp Search,  Prev: Nonincremental Search,  Up: Search
  763. Word Search
  764. ===========
  765.    Word search searches for a sequence of words without regard to how
  766. the words are separated.  More precisely, you type a string of many
  767. words, using single spaces to separate them, and the string can be
  768. found even if there are multiple spaces, newlines or other punctuation
  769. between the words.
  770.    Word search is useful for editing a printed document made with a text
  771. formatter.  If you edit while looking at the printed, formatted version,
  772. you can't tell where the line breaks are in the source file.  With word
  773. search, you can search without having to know them.
  774. `C-s RET C-w WORDS RET'
  775.      Search for WORDS, ignoring details of punctuation.
  776. `C-r RET C-w WORDS RET'
  777.      Search backward for WORDS, ignoring details of punctuation.
  778.    Word search is a special case of nonincremental search and is invoked
  779. with `C-s RET C-w'.  This is followed by the search string, which must
  780. always be terminated with RET.  Being nonincremental, this search does
  781. not start until the argument is terminated.  It works by constructing a
  782. regular expression and searching for that; see *Note Regexp Search::.
  783.    Use `C-r RET C-w' to do backward word search.
  784.    Forward and backward word searches are implemented by the commands
  785. `word-search-forward' and `word-search-backward'.  These commands may
  786. be bound to keys in the usual manner.  The feature that you can get to
  787. them via the incremental search commands exists for historical reasons,
  788. and to avoid the need to find suitable key sequences for them.
  789. File: emacs,  Node: Regexp Search,  Next: Regexps,  Prev: Word Search,  Up: Search
  790. Regular Expression Search
  791. =========================
  792.    A "regular expression" ("regexp", for short) is a pattern that
  793. denotes a class of alternative strings to match, possibly infinitely
  794. many.  In GNU Emacs, you can search for the next match for a regexp
  795. either incrementally or not.
  796.    Incremental search for a regexp is done by typing `C-M-s'
  797. (`isearch-forward-regexp').  This command reads a search string
  798. incrementally just like `C-s', but it treats the search string as a
  799. regexp rather than looking for an exact match against the text in the
  800. buffer.  Each time you add text to the search string, you make the
  801. regexp longer, and the new regexp is searched for.  To search backward
  802. in the buffer, use `C-M-r' (`isearch-backward-regexp').
  803.    All of the control characters that do special things within an
  804. ordinary incremental search have the same function in incremental regexp
  805. search.  Typing `C-s' or `C-r' immediately after starting the search
  806. retrieves the last incremental search regexp used; that is to say,
  807. incremental regexp and non-regexp searches have independent defaults.
  808. They also have separate search rings that you can access with `M-p' and
  809. `M-n'.
  810.    If you type SPC in incremental regexp search, it matches any
  811. sequence of whitespace characters, including newlines.  If you want to
  812. match just a space, type `C-q SPC'.
  813.    Note that adding characters to the regexp in an incremental regexp
  814. search can make the cursor move back and start again.  For example, if
  815. you have searched for `foo' and you add `\|bar', the cursor backs up in
  816. case the first `bar' precedes the first `foo'.
  817.    Nonincremental search for a regexp is done by the functions
  818. `re-search-forward' and `re-search-backward'.  You can invoke these
  819. with `M-x', or bind them to keys, or invoke them by way of incremental
  820. regexp search with `C-M-s RET' and `C-M-r RET'.
  821.